home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / text_utl / parsed / listbox.frm < prev    next >
Text File  |  1994-10-04  |  922b  |  38 lines

  1. VERSION 2.00
  2. Begin Form frmListBox 
  3.    Caption         =   "Parse Listbox"
  4.    ClientHeight    =   3870
  5.    ClientLeft      =   1170
  6.    ClientTop       =   1545
  7.    ClientWidth     =   7425
  8.    Height          =   4305
  9.    Left            =   1095
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3870
  12.    ScaleWidth      =   7425
  13.    Top             =   1185
  14.    Width           =   7575
  15.    Begin CommandButton cmdOK 
  16.       Cancel          =   -1  'True
  17.       Caption         =   "&OK"
  18.       Height          =   495
  19.       Left            =   3000
  20.       TabIndex        =   1
  21.       Top             =   3240
  22.       Width           =   1215
  23.    End
  24.    Begin ListBox List1 
  25.       Height          =   2955
  26.       Left            =   1020
  27.       TabIndex        =   0
  28.       Top             =   180
  29.       Width           =   5595
  30.    End
  31. End
  32. Option Explicit
  33.  
  34. Sub cmdOK_Click ()
  35.     Me.Hide
  36. End Sub
  37.  
  38.